

.headerArticles {
    padding-top: 150px;
    background: linear-gradient(to bottom, #0097a8, #07cde3);
    padding-bottom: 50px;
    color:white;
    font-weight:800;
}

    .headerArticles::after {
        content: "";
        position: absolute;
        left: 14%;
        width: 18%;
        height: 2px;
        background-color: white; /* Adjust the color as needed */
        border-radius:4px;
    }

.btn-articlesCard {
    background-color: #0097a8;
    color:white;
}

.articlesCards {
    margin-bottom: 20px; /* Adjust the margin value as per your preference */
    height: 400px;
}

.col-md-3 {
    
    margin-bottom: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    
}

.card-img-top {
    flex-shrink: 0;
    height: 200px; /* Adjust the image height as desired */
    object-fit: cover;
}

.card-body {
    flex-grow: 1;
}

.card-text {
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.card-link {
    margin-left: auto;
}